cody - HTMLify profile

cody
4270 Files
632074 Views
Latest files of /cody/vishal-dcode/Progress Steps
const progress = document.getElementById("progress");
const prev = document.getElementById("prev");
const next = document.getElementById("next");
const circles = document.querySelectorAll(".circle");
// Set the current active step to 1
let currentActive = 1;
const prev = document.getElementById("prev");
const next = document.getElementById("next");
const circles = document.querySelectorAll(".circle");
// Set the current active step to 1
let currentActive = 1;
:root {
--clr-primary: #ff6e31;
--clr-empty: gray;
}
* {
margin: 0;
padding: 0;
--clr-primary: #ff6e31;
--clr-empty: gray;
}
* {
margin: 0;
padding: 0;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Progress Steps</title>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Progress Steps</title>